home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / pcboard / suicide1.zip / SUICIDE.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1996-04-01  |  963b  |  101 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 3.1O (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.  
  21. ;------------------------------------------------------------------------------
  22.  
  23.     DispFile PPEPath() + "SUICIDE1", 1
  24.     STRING001 = NoChar()
  25.     InputYN "@X0F        Are you @X0EABSOLUTELY CERTAIN @X0Fthat this is what you want to do@X0A", STRING001, 11
  26.     If (STRING001 == YesChar()) Goto LABEL001
  27.     Goto LABEL003
  28.     :LABEL001
  29.     DelUser
  30.     If (Exist(PPEPath() + "SUICIDE.LOG")) Goto LABEL002
  31.     FCreate 1, PPEPath() + "SUICIDE.LOG", 2, 2
  32.     :LABEL002
  33.     FAppend 1, PPEPath() + "SUICIDE.LOG", 2, 2
  34.     FPutLn 1, U_Name()
  35.     FPutLn 1, U_Alias
  36.     FPutLn 1, Date()
  37.     FClose 1
  38.     Cls
  39.     DispFile PPEPath() + "SUICIDE2", 1
  40.     Hangup
  41.     :LABEL003
  42.     End
  43.  
  44. ;------------------------------------------------------------------------------
  45. ;
  46. ; Usage report (before postprocessing)
  47. ;
  48. ; ■ Statements used :
  49. ;
  50. ;    1       End
  51. ;    1       Cls
  52. ;    4       Goto 
  53. ;    1       Let 
  54. ;    2       If 
  55. ;    2       DispFile 
  56. ;    1       FCreate 
  57. ;    1       FAppend 
  58. ;    1       FClose 
  59. ;    3       FPutLn 
  60. ;    1       Hangup
  61. ;    1       DelUser
  62. ;    1       InputYN 
  63. ;
  64. ;
  65. ; ■ Functions used :
  66. ;
  67. ;    5       +
  68. ;    1       ==
  69. ;    1       Date()
  70. ;    1       U_Name()
  71. ;    1       NoChar()
  72. ;    1       YesChar()
  73. ;    5       PPEPath()
  74. ;    1       Exist()
  75. ;
  76. ;------------------------------------------------------------------------------
  77. ;
  78. ; Analysis flags : DB
  79. ;
  80. ; D - Delete user ■ 5
  81. ;     Program is deleting account(s)... Check!
  82. ;     ■ Search for : DELUSER
  83. ;
  84. ; B - Brute hangup ■ 1
  85. ;     Program hangup without notification. This may be a good way to
  86. ;     disconnect a user, but if used randomly, may be very nasty
  87. ;     ■ Search for : HANGUP, DTROFF
  88. ;
  89. ;------------------------------------------------------------------------------
  90. ;
  91. ; Postprocessing report
  92. ;
  93. ;    0       For/Next
  94. ;    0       While/EndWhile
  95. ;    0       If/Then or If/Then/Else
  96. ;    0       Select Case
  97. ;
  98. ;------------------------------------------------------------------------------
  99. ;                 AEGiS Corp - Break the routines, code against the machines!
  100. ;------------------------------------------------------------------------------
  101.